home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Super PC 34
/
Super PC 34 (Shareware).iso
/
spc
/
UTIL
/
DJGPP2
/
V2
/
DJTST200.ZIP
/
tests
/
libc
/
crt0
/
dosds.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-07-07
|
231 b
|
17 lines
#include <stdio.h>
#include <go32.h>
#include <sys/farptr.h>
int
main(void)
{
int i;
for (i=0xfff0; i<0x1000f; i++)
{
printf("%08x\n", i);
fflush(stdout);
_farpeekb(_dos_ds, i);
}
return 0;
}